Reject Cancel Transactions
Reject Cancel Transactions API is used to reject transactions that are in the WAITING_FOR_CANCEL_APPROVAL
state.
Endpoint
http://localhost:4041/rpc/VisaDirectService/RejectCancelTransactions
Method
POST
Request
Payload Parameters
Parameter | Type | Description |
---|---|---|
referenceNumbers | array of strings | Array of reference numbers of the transactions to be rejected. |
Sample Request
{
"referenceNumbers": [
"422215044342"
]
}
Sample Response
{
"cancelledTransactions": [
"422215044342"
]
}